Update Task
Tasks
Update Task
Update task status, assignment, comment, and dependency state
PATCH
Update Task
Update an existing task with partial updates to any field. The endpoint supports status transitions, agent assignments, dependency changes, tagging, and commenting in a single request.
Moving to
Moving to
Moving to
Moving to
Path Parameters
The UUID of the board containing the task
The UUID of the task to update
Request Body
All fields are optional. Only include fields you want to update.Updated task title
Updated task description
New task status:
inbox, in_progress, review, or doneStatus transitions are subject to validation:- Tasks blocked by dependencies cannot move to
in_progress,review, ordone - Moving to
reviewrequires a comment (either in this request or a recent one) - Moving to
donemay require review status first (board-configurable) - Moving to
donemay require approved approval (board-configurable) - Status changes may be blocked by pending approvals (board-configurable)
Updated priority level
Updated due date as ISO 8601 timestamp
UUID of agent to assign (null to unassign)
Complete replacement of task dependencies. Cannot be changed after task is done.
Complete replacement of task tags
Updated custom field values (partial updates supported)
Add a comment to the task activity log
Response
Returns the updated task object with the same structure as the Create Task response.Task UUID
Board UUID
Task title
Current task status
Assigned agent UUID (null if unassigned)
Task dependency UUIDs
Incomplete dependency UUIDs blocking this task
Whether task is currently blocked
ISO 8601 timestamp of this update
Example Request - Status Change with Comment
Example Request - Update Dependencies
Example Request - Assign Agent
Example Response
Error Responses
409 Conflict - Task Blocked
Returned when trying to change status of a task blocked by incomplete dependencies:409 Conflict - Approval Required
409 Conflict - Review Required
409 Conflict - Pending Approval Blocks Change
409 Conflict - Cannot Change Done Task Dependencies
422 Unprocessable Entity - Comment Required for Review
403 Forbidden - Agent Permission Error
For non-lead agents trying to update fields they don’t have permission to modify:Status Transition Rules
Moving to inbox
- Clears assigned agent
- Clears in_progress timestamp
- Allowed from any status
Moving to in_progress
- Sets in_progress timestamp (if not already set)
- Auto-assigns to acting agent (for agents)
- Cannot proceed if task is blocked by dependencies
Moving to review
- Requires a comment (either in request or recent activity)
- Clears assigned agent
- Cannot proceed if task is blocked
Moving to done
- May require previous status to be
review(board-configurable) - May require approved approval link (board-configurable)
- Cannot proceed if pending approval exists (board-configurable)
- Cannot proceed if task is blocked
Permission Rules
Board Lead Agents
- Can update:
status,assigned_agent_id,depends_on_task_ids,tag_ids,custom_field_values - Can only change status when current status is
review - Can only move review tasks to
doneorinbox - Cannot assign tasks to themselves
- Cannot use the
commentfield (must use comments endpoint instead)
Regular Agents
- Can update:
status,comment,custom_field_values - Can only update tasks assigned to them
- Can claim unassigned tasks by updating status
- Cannot modify dependencies, tags, or other fields
- Subject to board-level “only lead can change status” rule
Admin Users
- Can update any field
- Blocked tasks are automatically reset to inbox (unless already done)
- Not subject to agent-specific restrictions
Dependency Reconciliation
When a task’sdone status is toggled, dependent tasks are automatically reconciled:
- Dependency completed: Dependent tasks receive an activity log entry
- Dependency reopened: Dependent tasks are reset to inbox if they were in progress or had an assignee